home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / edit / unity331.zip / SIMPLE.PJU < prev    next >
Text File  |  1991-09-19  |  881b  |  22 lines

  1. # ========================================================
  2. # This is an example of a very simple project file
  3. # Unlike the make program that is included with Borland
  4. # products, this one isn't ass-backwards.  Its simple
  5. # design requires that the first file needed to be
  6. # compiled be listed first.  Just place your commands
  7. # in the order they are required and go.
  8. # ========================================================
  9. # any line beginning with "# " is a comment line and is ignored by UNITY
  10.  
  11. # If SAMPLE.OBJ is older than SAMPLE.ASM it will be reassembled
  12. SAMPLE.OBJ sample.asm
  13.   assemble /m sample
  14.  
  15. # If SUNIT.TPU is older than SUNIT.PAS or SAMPLE.OBJ it will be recompiled
  16. SUNIT.TPU sunit.pas sample.obj
  17.   compile /v sunit
  18.  
  19. # If SAMPLE.EXE is older than SAMPLE.PAS or SUNIT.TPU it will be recompiled
  20. SAMPLE.EXE sample.pas sunit.tpu
  21.   compile /v sunit
  22.